home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / networking / 2866 < prev    next >
Encoding:
Text File  |  1996-08-05  |  4.4 KB  |  138 lines

  1. Path: newsfeed.internetmci.com!xmission!news
  2. From: jsburger@xmission.com (John S. Burger)
  3. Newsgroups: comp.sys.amiga.networking
  4. Subject: Re: help with dial script
  5. Date: 23 Mar 96 15:17:32 +0500
  6. Organization: XMission Internet (801 539 0900)
  7. Message-ID: <4100.6656T917T1639@xmission.com>
  8. References: <53DI1SH.daleburrell@delphi.com>
  9. NNTP-Posting-Host: slc34.xmission.com
  10. X-Newsreader: THOR 2.22 (Amiga;TCP/IP)
  11.  
  12.  
  13. On or about 22-Mar-96 08:23:35 daleburrell typed the following words about
  14. "help with dial script".  My reply is thus...
  15.  
  16.  Hi daleburrell,
  17.  
  18.  
  19.  d> Can someone help me get my dialup script for 'PPP.device'
  20.  d>
  21.  d> I do connect now, but that all that happen.
  22.  d>
  23.  d> I think what the service want is to get started first by
  24.  d> sending 2 CR.
  25.  d> Then it ask for my 'username:'
  26.  d> Next it asks for my 'password:'
  27.  d>
  28.  d> Then finally  it asks me to   1) Start PPP\n
  29.  d>                               2) Telnet to the Server\n
  30.  d>                               3) EXIT\n
  31.  d>                                \n
  32.  d>                                Enter Number:
  33.  d>
  34.  d>
  35.  d> __________________here_is_my_capture_____________________________
  36.  d>
  37.  d>
  38.  d> Annex Command Line Interpreter   *   Copyright 1991 Xylogics, Inc.
  39.  d>
  40.  d>
  41.  d>
  42.  d> Checking authorization, Please wait...
  43.  d>
  44.  d> Annex username: **********
  45.  d>
  46.  d> Annex password: ************
  47.  d>
  48.  d>
  49.  d>
  50.  d> Permission granted
  51.  d>
  52.  d> Welcome to The Internet Ramp\n
  53.  d> \n
  54.  d> 1) Start PPP\n
  55.  d> 2) Telnet to the Server\n
  56.  d> 3) EXIT\n
  57.  d> \n
  58.  d> Enter Number:
  59.  d> 3
  60.  d>
  61.  d>
  62.  d>
  63.  d> Resetting line and disconnecting.
  64.  d>
  65.  d>
  66.  d>
  67.  d>
  68.  d>
  69.  d> NO CARRIER
  70.  d>
  71.  d> __________________HERE_IS_MY_DIALUP_SCRIPT________________________
  72.  d>
  73.  d> #
  74.  d> ECHO OFF
  75.  d> TIMEOUT 3600    ; Set maximum wait time (in ticks)
  76.  d> REDIAL "BUSY"   ; Redial on busy signal
  77.  d> DELAY 100
  78.  d> SEND ""
  79.  d> DELAY 50                                 _____________________________
  80.  d> SEND "atz"     ; Initialize the modem   |It seens to get stuck here.
  81.  d> DELAY 20                                |I've tried WAIT "CT"
  82.  d> WAIT "K"        ; Wait for the OK      / and        WAIT "14"
  83.  d> SEND "ATDT2539040" ; Dial             /
  84.  d> WAIT "BIS"       ; Wait for connect <-  but still nothing happens
  85.  
  86.  
  87. The WAIT command waits for a string from the modem. I dont see "BIS",
  88. "CT" or "14" in your capture above. Do you send the two carriage returns and
  89. then see the line "Annex Command Line Interpreter   *   Copyright 1991
  90. Xylogics,Inc."? If so then instead of WAIT "BIS" do a WAIT "Connect", this is
  91. what your modem sends when it gets a connection. Then send your two carriage
  92. returns. You can leave the DELAY 10 in there just to let everything settle
  93. down, but it might not be necessary. Check with a terminal program to make
  94. sure what your modem sends when it connects. It should send the word "Connect"
  95. at least but it may not be a capital C.
  96.  
  97.  
  98.  d> DELAY 10                              \
  99.  d> SEND ""                                 \
  100.  d> SEND ""                                  |
  101.  d> WAIT "name:"        ; Wait for Name:     |____________________________
  102.  d> SEND "*********" ; Send your User ID
  103.  d> DELAY 20
  104.  d> WAIT "d:"         ; Wait for Password:
  105.  d> SEND "**********" ; Send your password
  106.  d> DELAY 50
  107.  
  108. Don't do a DELAY 50 here, that might not be enough time in some cases. Do a
  109. WAIT "Number:" and then SEND"1".  Remember the WAIT command is case sensitive
  110. so for example "Connect" is not the same as "connect".
  111.  
  112.  d> SEND"1"
  113.  d> #END
  114.  d> _________________________________________________________________
  115.  d>
  116.  d> Please help me to get connected. you will be helping me and a couple
  117.  d> of others try this Service.
  118.  d>
  119.  d> I've go on the service by call with another COMM program and then on
  120.  d> the menu switch on 'serial quiet' then launch PPP(startnet). What a
  121.  d> hassle!
  122.  
  123. Hope this helps. If you have any more problems just email me. :<)
  124.  
  125. --
  126.       //        -= John =-    jsburger@xmission.com    BIX: jburger
  127.     \X/                                                                 Via
  128.                              Amateur Radio   KB0ES                       T
  129.  Amiga  2000                                                             H
  130.  A2630 A2632            John S. Burger       Hooper, UT                  O
  131. 2+14megs  RAM                                                            R
  132.   850meg HD             This message was composed on...                2.23▀
  133.  Iomega  ZIP                  23-Mar-96 14:58:39 MST
  134. --
  135.  
  136. A lie that can be passed off as truth becomes truth.
  137.  
  138.